module pe.managed.tables {
/** ECMA-335 II.22.28 */export class MethodSemantics {
TableKind = 0x18;
semantics: metadata.MethodSemanticsAttributes = 0;
method: number = 0;
association: number = 0;
read(reader: metadata.TableReader) {
this.semantics = reader.readShort();
this.method = reader.readMethodDefTableIndex();
this.association = reader.readHasSemantics();
}
}
}